LInteger is a C++ library designed to allow programmers to create
objects representing nearly arbitrary precision integers.
Thanks to C++'s support for operator overloading,
the use of the large integers in this library should be nearly as easy as
the use of regular int
s. In fact, much code which performs
arithmetic
on regular int
s can be converted to code to perform
the same
arithmetic on arbitrary precision integers merely by substituting
LInteger
for int
.